projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7a44ef
)
Added log message for when a VM is deleted.
author
Ewan Mellor
<ewan@xensource.com>
Fri, 1 Dec 2006 13:07:19 +0000
(13:07 +0000)
committer
Ewan Mellor
<ewan@xensource.com>
Fri, 1 Dec 2006 13:07:19 +0000
(13:07 +0000)
Signed-off-by: Ewan Mellor <ewan@xensource.com>
tools/python/xen/xend/XendDomain.py
patch
|
blob
|
history
diff --git
a/tools/python/xen/xend/XendDomain.py
b/tools/python/xen/xend/XendDomain.py
index bb14e70667763dd8534526a1845edca82bfa2aed..5ebb7e6240f515a0d95f90d244fe4d4a1496a0d7 100644
(file)
--- a/
tools/python/xen/xend/XendDomain.py
+++ b/
tools/python/xen/xend/XendDomain.py
@@
-929,6
+929,9
@@
class XendDomain:
if dominfo.state != DOM_STATE_HALTED:
raise XendError("Domain is still running")
+ log.info("Domain %s (%s) deleted." %
+ (dominfo.getName(), dominfo.info.get('uuid')))
+
self._managed_domain_unregister(dominfo)
self._remove_domain(dominfo)
XendDevices.destroy_device_state(dominfo)